Save Bank Detail
POST : http://<base_url>/digipay/v3/user/banks
This API is used to save new bank data into the system.
BODY PARAMS:-
| Parameter | Type | Description | Value | 
|---|---|---|---|
| bank_name | String | it is a represents name of the bank | SBI | 
| bank_image | String | image url for the bank | image | 
| bank_code | String | unique bank_code assigned to the bank at the time of creating user code | ABC_1001 | 
HEADERS:-
| Parameter | Type | Description | Value | 
|---|---|---|---|
| Authorization | String | It is a combination of type and token to authenticate user for the given token | Token duik7309njdlkhdauhknksadhjkas986876sd873j | 
| CompanyID | String | Company_id is a unique primary id, that is represent company detail | 76bc712200ca444fa334f9e55e5fd7a8 | 
Request Body:-
Request Example
curl --request POST \
     --url http://192.168.1.102:8014/digipay/v3/user/banks \
     --header 'Authorization: Token eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiI2NWY0ZDI1MDliZmU0NTBmYTg4MTVhNTU5Njk3YmM0NyIsInJvbGVzIjpbIlJPTEVfQURNSU4iXSwiZXhwIjoxNjkzNTIxOTU1fQ.9oWwUzlFzmYB1ZOhaVamxKJH6DsMO8tFue2kbg2YyoI' \
     --header 'CompanyID: Company_id is a unique primary id, that is represent company detail.' \
     --header 'accept: application/json' \
     --header 'content-type: application/json' \
     --data '
{
  "bank_name": "SBI",
  "bank_image": "<Image link will come here>",
  "bank_code": "ABC_1001"
}
'
Response:-
Response 200(OK)
{
  "success": 1,
  "error": [],
  "data": {
    "message": "Bank data saved successfully.",
    "bank_id": "61457e993a294323944a1c2e7c812338"
  }
}
Response 400(BAD REQUEST)
{
    "success": 0,
    "error"": [1],
    "data": {
        "message": "BAD_REQUEST",
     }
}
RESPONSES :-
| Status Code | Description | 
|---|---|
| 200 | OK | 
| 400 | BAD REQUEST | 
| 404 | NOT FOUND | 
| 500 | INTERNAL SERVER ERROR |